home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Viewers / VideoStreamV1.0 / Source / aviDecodeSrc / makefile < prev    next >
Encoding:
Makefile  |  1995-06-12  |  302 b   |  26 lines

  1. # NeXT C Flags
  2. CFLAGS        = -O4 -pipe -s 
  3.  
  4. HDRS          = xanim.h xanim_avi.h
  5.  
  6. MAKEFILE      = makefile
  7.  
  8. OBJS          = main.o xanim_avi.o 
  9.  
  10. PROGRAM       = aviDecode
  11.  
  12. SHELL          = /bin/sh
  13.  
  14. SRCS          = main.c xanim_avi.c 
  15.  
  16. all:        $(PROGRAM)
  17.  
  18. $(PROGRAM):    $(OBJS)
  19.         cc $(OBJS) -lm -o $(PROGRAM)
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.